home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / wsgiref / handlers.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  16KB  |  473 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Base classes for server/gateway implementations'''
  5. from types import StringType
  6. from util import FileWrapper, guess_scheme, is_hop_by_hop
  7. from headers import Headers
  8. import sys
  9. import os
  10. import time
  11. __all__ = [
  12.     'BaseHandler',
  13.     'SimpleHandler',
  14.     'BaseCGIHandler',
  15.     'CGIHandler']
  16.  
  17. try:
  18.     dict
  19. except NameError:
  20.     
  21.     def dict(items):
  22.         d = { }
  23.         for k, v in items:
  24.             d[k] = v
  25.         
  26.         return d
  27.  
  28.  
  29.  
  30. try:
  31.     True
  32.     False
  33. except NameError:
  34.     True = not None
  35.     False = not True
  36.  
  37. _weekdayname = [
  38.     'Mon',
  39.     'Tue',
  40.     'Wed',
  41.     'Thu',
  42.     'Fri',
  43.     'Sat',
  44.     'Sun']
  45. _monthname = [
  46.     None,
  47.     'Jan',
  48.     'Feb',
  49.     'Mar',
  50.     'Apr',
  51.     'May',
  52.     'Jun',
  53.     'Jul',
  54.     'Aug',
  55.     'Sep',
  56.     'Oct',
  57.     'Nov',
  58.     'Dec']
  59.  
  60. def format_date_time(timestamp):
  61.     (year, month, day, hh, mm, ss, wd, y, z) = time.gmtime(timestamp)
  62.     return '%s, %02d %3s %4d %02d:%02d:%02d GMT' % (_weekdayname[wd], day, _monthname[month], year, hh, mm, ss)
  63.  
  64.  
  65. class BaseHandler:
  66.     '''Manage the invocation of a WSGI application'''
  67.     wsgi_version = (1, 0)
  68.     wsgi_multithread = True
  69.     wsgi_multiprocess = True
  70.     wsgi_run_once = False
  71.     origin_server = True
  72.     http_version = '1.0'
  73.     server_software = None
  74.     os_environ = dict(os.environ.items())
  75.     wsgi_file_wrapper = FileWrapper
  76.     headers_class = Headers
  77.     traceback_limit = None
  78.     error_status = '500 Dude, this is whack!'
  79.     error_headers = [
  80.         ('Content-Type', 'text/plain')]
  81.     error_body = 'A server error occurred.  Please contact the administrator.'
  82.     status = None
  83.     result = None
  84.     headers_sent = False
  85.     headers = None
  86.     bytes_sent = 0
  87.     
  88.     def run(self, application):
  89.         '''Invoke the application'''
  90.         
  91.         try:
  92.             self.setup_environ()
  93.             self.result = application(self.environ, self.start_response)
  94.             self.finish_response()
  95.         except:
  96.             
  97.             try:
  98.                 self.handle_error()
  99.             self.close()
  100.             raise 
  101.  
  102.  
  103.  
  104.     
  105.     def setup_environ(self):
  106.         '''Set up the environment for one request'''
  107.         env = self.environ = self.os_environ.copy()
  108.         self.add_cgi_vars()
  109.         env['wsgi.input'] = self.get_stdin()
  110.         env['wsgi.errors'] = self.get_stderr()
  111.         env['wsgi.version'] = self.wsgi_version
  112.         env['wsgi.run_once'] = self.wsgi_run_once
  113.         env['wsgi.url_scheme'] = self.get_scheme()
  114.         env['wsgi.multithread'] = self.wsgi_multithread
  115.         env['wsgi.multiprocess'] = self.wsgi_multiprocess
  116.         if self.wsgi_file_wrapper is not None:
  117.             env['wsgi.file_wrapper'] = self.wsgi_file_wrapper
  118.         
  119.         if self.origin_server and self.server_software:
  120.             env.setdefault('SERVER_SOFTWARE', self.server_software)
  121.         
  122.  
  123.     
  124.     def finish_response(self):
  125.         """Send any iterable data, then close self and the iterable
  126.  
  127.         Subclasses intended for use in asynchronous servers will
  128.         want to redefine this method, such that it sets up callbacks
  129.         in the event loop to iterate over the data, and to call
  130.         'self.close()' once the response is finished.
  131.         """
  132.         if not self.result_is_file() or not self.sendfile():
  133.             for data in self.result:
  134.                 self.write(data)
  135.             
  136.             self.finish_content()
  137.         
  138.         self.close()
  139.  
  140.     
  141.     def get_scheme(self):
  142.         '''Return the URL scheme being used'''
  143.         return guess_scheme(self.environ)
  144.  
  145.     
  146.     def set_content_length(self):
  147.         '''Compute Content-Length or switch to chunked encoding if possible'''
  148.         
  149.         try:
  150.             blocks = len(self.result)
  151.         except (TypeError, AttributeError, NotImplementedError):
  152.             pass
  153.  
  154.         if blocks == 1:
  155.             self.headers['Content-Length'] = str(self.bytes_sent)
  156.             return None
  157.         
  158.  
  159.     
  160.     def cleanup_headers(self):
  161.         '''Make any necessary header changes or defaults
  162.  
  163.         Subclasses can extend this to add other defaults.
  164.         '''
  165.         if not self.headers.has_key('Content-Length'):
  166.             self.set_content_length()
  167.         
  168.  
  169.     
  170.     def start_response(self, status, headers, exc_info = None):
  171.         """'start_response()' callable as specified by PEP 333"""
  172.         if exc_info:
  173.             
  174.             try:
  175.                 if self.headers_sent:
  176.                     raise exc_info[0], exc_info[1], exc_info[2]
  177.             finally:
  178.                 exc_info = None
  179.  
  180.         elif self.headers is not None:
  181.             raise AssertionError('Headers already set!')
  182.         
  183.         if not type(status) is StringType:
  184.             raise AssertionError, 'Status must be a string'
  185.         if not len(status) >= 4:
  186.             raise AssertionError, 'Status must be at least 4 characters'
  187.         if not int(status[:3]):
  188.             raise AssertionError, 'Status message must begin w/3-digit code'
  189.         if not status[3] == ' ':
  190.             raise AssertionError, 'Status message must have a space after code'
  191.         for name, val in headers:
  192.             if not type(name) is StringType:
  193.                 raise AssertionError, 'Header names must be strings'
  194.             if not type(val) is StringType:
  195.                 raise AssertionError, 'Header values must be strings'
  196.             if not not is_hop_by_hop(name):
  197.                 raise AssertionError, 'Hop-by-hop headers not allowed'
  198.         
  199.         self.status = status
  200.         self.headers = self.headers_class(headers)
  201.         return self.write
  202.  
  203.     
  204.     def send_preamble(self):
  205.         '''Transmit version/status/date/server, via self._write()'''
  206.         if self.origin_server:
  207.             if self.client_is_modern():
  208.                 self._write('HTTP/%s %s\r\n' % (self.http_version, self.status))
  209.                 if not self.headers.has_key('Date'):
  210.                     self._write('Date: %s\r\n' % format_date_time(time.time()))
  211.                 
  212.                 if self.server_software and not self.headers.has_key('Server'):
  213.                     self._write('Server: %s\r\n' % self.server_software)
  214.                 
  215.             
  216.         else:
  217.             self._write('Status: %s\r\n' % self.status)
  218.  
  219.     
  220.     def write(self, data):
  221.         """'write()' callable as specified by PEP 333"""
  222.         if not type(data) is StringType:
  223.             raise AssertionError, 'write() argument must be string'
  224.         if not self.status:
  225.             raise AssertionError('write() before start_response()')
  226.         elif not self.headers_sent:
  227.             self.bytes_sent = len(data)
  228.             self.send_headers()
  229.         else:
  230.             self.bytes_sent += len(data)
  231.         self._write(data)
  232.         self._flush()
  233.  
  234.     
  235.     def sendfile(self):
  236.         """Platform-specific file transmission
  237.  
  238.         Override this method in subclasses to support platform-specific
  239.         file transmission.  It is only called if the application's
  240.         return iterable ('self.result') is an instance of
  241.         'self.wsgi_file_wrapper'.
  242.  
  243.         This method should return a true value if it was able to actually
  244.         transmit the wrapped file-like object using a platform-specific
  245.         approach.  It should return a false value if normal iteration
  246.         should be used instead.  An exception can be raised to indicate
  247.         that transmission was attempted, but failed.
  248.  
  249.         NOTE: this method should call 'self.send_headers()' if
  250.         'self.headers_sent' is false and it is going to attempt direct
  251.         transmission of the file.
  252.         """
  253.         return False
  254.  
  255.     
  256.     def finish_content(self):
  257.         '''Ensure headers and content have both been sent'''
  258.         if not self.headers_sent:
  259.             self.headers['Content-Length'] = '0'
  260.             self.send_headers()
  261.         
  262.  
  263.     
  264.     def close(self):
  265.         '''Close the iterable (if needed) and reset all instance vars
  266.  
  267.         Subclasses may want to also drop the client connection.
  268.         '''
  269.         
  270.         try:
  271.             if hasattr(self.result, 'close'):
  272.                 self.result.close()
  273.         finally:
  274.             self.result = None
  275.             self.headers = None
  276.             self.status = None
  277.             self.environ = None
  278.             self.bytes_sent = 0
  279.             self.headers_sent = False
  280.  
  281.  
  282.     
  283.     def send_headers(self):
  284.         '''Transmit headers to the client, via self._write()'''
  285.         self.cleanup_headers()
  286.         self.headers_sent = True
  287.         if not (self.origin_server) or self.client_is_modern():
  288.             self.send_preamble()
  289.             self._write(str(self.headers))
  290.         
  291.  
  292.     
  293.     def result_is_file(self):
  294.         """True if 'self.result' is an instance of 'self.wsgi_file_wrapper'"""
  295.         wrapper = self.wsgi_file_wrapper
  296.         if wrapper is not None:
  297.             pass
  298.         return isinstance(self.result, wrapper)
  299.  
  300.     
  301.     def client_is_modern(self):
  302.         '''True if client can accept status and headers'''
  303.         return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
  304.  
  305.     
  306.     def log_exception(self, exc_info):
  307.         """Log the 'exc_info' tuple in the server log
  308.  
  309.         Subclasses may override to retarget the output or change its format.
  310.         """
  311.         
  312.         try:
  313.             print_exception = print_exception
  314.             import traceback
  315.             stderr = self.get_stderr()
  316.             print_exception(exc_info[0], exc_info[1], exc_info[2], self.traceback_limit, stderr)
  317.             stderr.flush()
  318.         finally:
  319.             exc_info = None
  320.  
  321.  
  322.     
  323.     def handle_error(self):
  324.         '''Log current error, and send error output to client if possible'''
  325.         self.log_exception(sys.exc_info())
  326.         if not self.headers_sent:
  327.             self.result = self.error_output(self.environ, self.start_response)
  328.             self.finish_response()
  329.         
  330.  
  331.     
  332.     def error_output(self, environ, start_response):
  333.         """WSGI mini-app to create error output
  334.  
  335.         By default, this just uses the 'error_status', 'error_headers',
  336.         and 'error_body' attributes to generate an output page.  It can
  337.         be overridden in a subclass to dynamically generate diagnostics,
  338.         choose an appropriate message for the user's preferred language, etc.
  339.  
  340.         Note, however, that it's not recommended from a security perspective to
  341.         spit out diagnostics to any old user; ideally, you should have to do
  342.         something special to enable diagnostic output, which is why we don't
  343.         include any here!
  344.         """
  345.         start_response(self.error_status, self.error_headers[:], sys.exc_info())
  346.         return [
  347.             self.error_body]
  348.  
  349.     
  350.     def _write(self, data):
  351.         """Override in subclass to buffer data for send to client
  352.  
  353.         It's okay if this method actually transmits the data; BaseHandler
  354.         just separates write and flush operations for greater efficiency
  355.         when the underlying system actually has such a distinction.
  356.         """
  357.         raise NotImplementedError
  358.  
  359.     
  360.     def _flush(self):
  361.         """Override in subclass to force sending of recent '_write()' calls
  362.  
  363.         It's okay if this method is a no-op (i.e., if '_write()' actually
  364.         sends the data.
  365.         """
  366.         raise NotImplementedError
  367.  
  368.     
  369.     def get_stdin(self):
  370.         """Override in subclass to return suitable 'wsgi.input'"""
  371.         raise NotImplementedError
  372.  
  373.     
  374.     def get_stderr(self):
  375.         """Override in subclass to return suitable 'wsgi.errors'"""
  376.         raise NotImplementedError
  377.  
  378.     
  379.     def add_cgi_vars(self):
  380.         """Override in subclass to insert CGI variables in 'self.environ'"""
  381.         raise NotImplementedError
  382.  
  383.  
  384.  
  385. class SimpleHandler(BaseHandler):
  386.     """Handler that's just initialized with streams, environment, etc.
  387.  
  388.     This handler subclass is intended for synchronous HTTP/1.0 origin servers,
  389.     and handles sending the entire response output, given the correct inputs.
  390.  
  391.     Usage::
  392.  
  393.         handler = SimpleHandler(
  394.             inp,out,err,env, multithread=False, multiprocess=True
  395.         )
  396.         handler.run(app)"""
  397.     
  398.     def __init__(self, stdin, stdout, stderr, environ, multithread = True, multiprocess = False):
  399.         self.stdin = stdin
  400.         self.stdout = stdout
  401.         self.stderr = stderr
  402.         self.base_env = environ
  403.         self.wsgi_multithread = multithread
  404.         self.wsgi_multiprocess = multiprocess
  405.  
  406.     
  407.     def get_stdin(self):
  408.         return self.stdin
  409.  
  410.     
  411.     def get_stderr(self):
  412.         return self.stderr
  413.  
  414.     
  415.     def add_cgi_vars(self):
  416.         self.environ.update(self.base_env)
  417.  
  418.     
  419.     def _write(self, data):
  420.         self.stdout.write(data)
  421.         self._write = self.stdout.write
  422.  
  423.     
  424.     def _flush(self):
  425.         self.stdout.flush()
  426.         self._flush = self.stdout.flush
  427.  
  428.  
  429.  
  430. class BaseCGIHandler(SimpleHandler):
  431.     """CGI-like systems using input/output/error streams and environ mapping
  432.  
  433.     Usage::
  434.  
  435.         handler = BaseCGIHandler(inp,out,err,env)
  436.         handler.run(app)
  437.  
  438.     This handler class is useful for gateway protocols like ReadyExec and
  439.     FastCGI, that have usable input/output/error streams and an environment
  440.     mapping.  It's also the base class for CGIHandler, which just uses
  441.     sys.stdin, os.environ, and so on.
  442.  
  443.     The constructor also takes keyword arguments 'multithread' and
  444.     'multiprocess' (defaulting to 'True' and 'False' respectively) to control
  445.     the configuration sent to the application.  It sets 'origin_server' to
  446.     False (to enable CGI-like output), and assumes that 'wsgi.run_once' is
  447.     False.
  448.     """
  449.     origin_server = False
  450.  
  451.  
  452. class CGIHandler(BaseCGIHandler):
  453.     """CGI-based invocation via sys.stdin/stdout/stderr and os.environ
  454.  
  455.     Usage::
  456.  
  457.         CGIHandler().run(app)
  458.  
  459.     The difference between this class and BaseCGIHandler is that it always
  460.     uses 'wsgi.run_once' of 'True', 'wsgi.multithread' of 'False', and
  461.     'wsgi.multiprocess' of 'True'.  It does not take any initialization
  462.     parameters, but always uses 'sys.stdin', 'os.environ', and friends.
  463.  
  464.     If you need to override any of these parameters, use BaseCGIHandler
  465.     instead.
  466.     """
  467.     wsgi_run_once = True
  468.     
  469.     def __init__(self):
  470.         BaseCGIHandler.__init__(self, sys.stdin, sys.stdout, sys.stderr, dict(os.environ.items()), multithread = False, multiprocess = True)
  471.  
  472.  
  473.